math.random python

25

# generate random integer values
from random import randint

value = randint(0, 10)
print(value)

Comments

Submit
0 Comments